home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 1 (Walnut Creek)
/
Aminet - June 1993 [Walnut Creek].iso
/
usenet
/
sources
/
volume90
/
libraris
/
odinlib1
/
part01
/
Makefile
next >
Wrap
Makefile
|
1990-09-03
|
664b
|
36 lines
#
# Aztec-makefile
#
CCFLAGS =
LINKOBJS = odinglue.o
LIBS = -lc
TMPDIR = RAM:
.c.o:
copy $*.c $(TMPDIR)
cc $(CCFLAGS) -o $(TMPDIR)$@ $(TMPDIR)$*.c
all: odindemo1 odindemo2 odintest
odindemo1: odindemo1.o odinglue.o
ln -o $(TMPDIR)$@ $(TMPDIR)$@.o $(LINKOBJS) $(LIBS)
copy $(TMPDIR)$@ $@
odindemo2: odindemo2.o odinglue.o
ln -o $(TMPDIR)$@ $(TMPDIR)$@.o $(LINKOBJS) $(LIBS)
copy $(TMPDIR)$@ $@
odinglue.o: odinglue.asm
as odinglue
#fraktal: fraktal.o odinglue.o
# ln -o $(TMPDIR)$@ $(TMPDIR)$@.o $(LINKOBJS) $(LIBS) -lm
# copy $(TMPDIR)$@ $@
odintest: odintest.o odinglue.o
ln -o $(TMPDIR)$@ $(TMPDIR)$@.o $(LINKOBJS) $(LIBS)
copy $(TMPDIR)$@ $@